home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / GIFLIB12.ARJ / RGB2GIF.DOC < prev    next >
Text File  |  1991-06-16  |  1KB  |  40 lines

  1.             RGB2Gif
  2.             -------
  3.  
  4. Program to convert 24 bit images to a GIF image using color quantization.
  5.  
  6.  
  7. Usage:
  8. ------
  9.  
  10. Usage: RGB2Gif [-q] [-c #Colors] [-1] -s Width Height [-h] RGBFile
  11.  
  12. If no RGBFile is given, RGB2Gif will try to read stdin for GIF file.
  13.  
  14.  
  15. Memory required:
  16. ----------------
  17.  
  18. Screen.
  19.  
  20.  
  21. Options:
  22. --------
  23.  
  24. 1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
  25.    of running scan lines. Use -q- to turn off.
  26. 2. [-c #Colors] specifies number of colors to use, in bits per pixels, so
  27.    '-c 8' specifies actually 256 colors (maximum and default).
  28. 3. [-1] : Only one file in the format of RGBRGB... triplates (Each of R, G, B
  29.    is a byte) is read from input. This file size is 3 * Width * Height (see
  30.    '-s' below. If stdin is used for input, this option is implicitly applied.
  31.    The default (if not '-1') is 3 files with the names RGBFile.R, RGBFile.G,
  32.    RGBFile.B, each of which is Width * Height bytes.
  33. 4. [-s Width Height] specifies the size of the image to read.
  34. 5. [-h] : print one command line help, similar to Usage above.
  35.  
  36. Notes:
  37. ------
  38.   Due to 8088 limitation, on MSDOS, maximum image size can not exceed
  39. 64k pixels.
  40.